+++ /dev/null
-siridb-server (2.0.29-5.1) unstable; urgency=medium
-
- * Non-maintainer upload
- * Initial release
-
- -- Michael Ziegler <michael.ziegler@proemion.com> Thu, 04 Oct 2018 08:38:54 +0200
+++ /dev/null
-Source: siridb-server
-Section: database
-Priority: optional
-Maintainer: Jeroen van der Heijden <jeroen@transceptor.technology>
-Build-Depends: debhelper (>= 11),
- dh-exec (>=0.3),
- pkg-config,
- libpcre2-dev,
- libuv1-dev,
- uuid-dev,
- libcleri-dev
-Standards-Version: 4.1.3
-Homepage: https://siridb.net
-Vcs-Browser: https://github.com/SiriDB/siridb-server
-Vcs-Git: https://github.com/SiriDB/siridb-server.git
-
-Package: siridb-server
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, libuv1 (>= 1.8.0), libcleri0
-Description: SiriDB time series database server
- SiriDB is a fast and scalable time series database.
+++ /dev/null
-Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
-Upstream-Name: siridb-server
-Source: https://siridb.net
-
-Files: *
-Copyright: 2016 Transceptor Technology
-License: MIT
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
- .
- The above copyright notice and this permission notice shall be included in all
- copies or substantial portions of the Software.
- .
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- SOFTWARE.
+++ /dev/null
-.\" Manpage for siridb-server.
-.\" Contact jeroen@transceptor.technology to correct errors or typos.
-.TH man 8 "28 Sep 2018" "1.0" "siridb-server man page"
-.SH NAME
-siridb-server \- start the SiriDB time series database server
-.SH SYNOPSIS
-siridb-server
-.SH DESCRIPTION
-SiriDB time series database server.
-.SH OPTIONS
-See siridb-server --help for more information.
-.SH BUGS
-No known bugs.
-.SH AUTHOR
-Jeroen van der Heijden (jeroen@transceptor.technology)
+++ /dev/null
-#!/usr/bin/make -f
-
-#export DH_VERBOSE = 1
-
-%:
- dh $@
-
-override_dh_auto_clean:
- cd Release && make clean
-
-override_dh_auto_build:
- cd Release && make && make test
+++ /dev/null
-/etc/siridb
-/var/lib/siridb
+++ /dev/null
-Release/siridb-server /usr/bin
-siridb.conf /etc/siridb
-README.md /usr/share/doc/siridb-server
-help /usr/share/doc/siridb-server
+++ /dev/null
-debian/man/siridb-server.8
+++ /dev/null
-#!/bin/bash
-
-set -e
-
-case "$1" in
-
- configure)
- # Set up SiriDB Server
- if which deb-systemd-invoke >/dev/null 2>&1 && pidof systemd >/dev/null 2>&1; then
- OUTPUT=`deb-systemd-invoke status siridb-server || true`
- if [[ $OUTPUT == *"running"* ]]; then
- echo "--------------------------------------------------------------------------------"
- echo "| type 'sudo systemctl restart siridb-server.service' to restart SiriDB |"
- echo "| ...or just reboot the machine. |"
- echo "--------------------------------------------------------------------------------"
- else
- echo "Configure systemd service 'siridb-server' ..."
- cp /usr/lib/siridb/server/systemd/siridb-server.service /lib/systemd/system/siridb-server.service
- systemctl daemon-reload || true
- deb-systemd-invoke enable siridb-server 2>/dev/null >/dev/null || true
- echo "--------------------------------------------------------------------------------"
- echo "| type 'sudo systemctl start siridb-server.service' to start SiriDB |"
- echo "| ...or just reboot the machine. |"
- echo "--------------------------------------------------------------------------------"
- fi
- else
- echo "--------------------------------------------------------------------------------"
- echo "| Please use supervisor or another deamon to start SiriDB Server |"
- echo "| It's also possible to start SiriDB manually using 'sudo siridb-server' |"
- echo "--------------------------------------------------------------------------------"
- fi
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
- exit 0
- ;;
-
- *)
- echo "postinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
\ No newline at end of file
+++ /dev/null
-#!/bin/bash
-
-set -e
-
-case "$1" in
-
- upgrade)
- exit 0
- ;;
-
- remove|deconfigure)
- # Stop and remove service (when needed)
- if which deb-systemd-invoke >/dev/null 2>&1 && pidof systemd >/dev/null 2>&1; then
- echo "Removing systemd service '{package}' ..."
- deb-systemd-invoke stop {package} 2>/dev/null >/dev/null || true
- deb-systemd-invoke disable {package} 2>/dev/null >/dev/null || true
- rm /lib/systemd/system/{package}.service 2>/dev/null >/dev/null || true
- fi
- ;;
-
- failed-upgrade)
- exit 0
- ;;
-
- *)
- echo "prerm called with unknown argument \`$1'" >&2
- exit 1
- ;;
-
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
\ No newline at end of file
+++ /dev/null
-[Unit]
-Description=SiriDB Server
-After=network.target
-
-[Service]
-ExecStart=/usr/bin/siridb-server --config /etc/siridb/siridb.conf --log-level warning
-StandardOutput=journal
-LimitNOFILE=65535
-TimeoutStartSec=10
-TimeoutStopSec=300
-
-[Install]
-WantedBy=multi-user.target
+++ /dev/null
-3.0 (quilt)